home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 2
/
Nebula Two.iso
/
Drivers
/
play3401
/
Makefile
< prev
next >
Wrap
Makefile
|
1994-03-02
|
1KB
|
41 lines
###############################################################################
#
# File: Makefile
# Description: Makefile for the Toshiba 3401 CD audio player
# Author: Carl Edman
# Created: Wed May 5 21:33:27 1993
# Modified: Thu Mar 3 13:54:08 1994 (Carl Edman) cedman@capitalist.princeton.edu
# Language: Text
# Package: N/A
# Status: Release 1.2
#
# (C) Copyright 1993, but otherwise this file is perfect freeware.
#
###############################################################################
CFLAGS = -pipe -Wall -O2
LDFLAGS = -g -object
BINDIR=/usr/local/bin
MANDIR=/usr/local/man/man1
BINS = play3401
MANS = play3401.1
all: $(BINS) $(MANS)
play3401: play3401.o scsicommands.o
cc $(LDFLAGS) -o $@ play3401.o scsicommands.o
clean:
-/bin/rm *.o
spotless: clean
-/bin/rm $(BINS)
install: installbin installman
installbin: $(BINS)
for i in $(BINS) ; do install -s -c -o root -g wheel -m 4775 $$i $(BINDIR); done
installman: $(MANS)
for i in $(MANS) ; do install -c -m 664 $$i $(MANDIR); done